home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 1.0 KB | 49 lines | [TEXT/ScoM] |
- SPREADING CONTROLLERS OVER ZONES
-
- >How can I define a controller to go across zones?
-
- try the example:
-
- (null-compiler)
-
- (def-section simple-sect
-
- default
- tempo-zones '(1/1)
- tempo '(60)
-
- inst1
- zone '(1/4 1/4 1/4 1/4 1/4 1/4 1/4 1/4 )
- tonality (list '(c 4))
-
- symbol '(a)
- length '(1/16)
-
- duration '((1/17))
- velocity (gen-cresc-dim 1 127 32)
-
- channel 1
- program 1
- controller (jv-controllers
- Volume (list '(127))
- Pan (list (gen-cresc-dim 1 127 32)) ; restarted each
- zone
-
- ; Why I can not define a controller list to go across zones as the
- following lines?
- ; (I can do it with symbols and lengths...see velocity...)
- ; Pan '(64 34 56 12)
- ; Pan (gen-cresc-dim 1 127 30)
-
-
- )
- groove '(0)
- tuning '((0))
- )
- (play-file "Prbx"
- inst1 simple-sect
- )
-
- ;Play the song
- (launch-midi "SCPL" "Prbx")
-